home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Critical Thinking Skills / Workplace Effectiveness: Critical Thinking Skills.iso / pc / Files / Whyfiles.dxr / 00002_Main navigation buttons.ls < prev    next >
Encoding:
Text File  |  1998-09-14  |  488 b   |  39 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       goWhy1()
  8.   end case
  9. end
  10.  
  11. on goBack
  12.   stopSound2()
  13.   case gSection of
  14.     #why1:
  15.       goIntro()
  16.     #w1, #w2, #w3, #w4, #w5:
  17.       exitWhy1()
  18.       goIntro()
  19.   end case
  20. end
  21.  
  22. on leaveThisMovie
  23.   if iAmActivated(gMasterData) then
  24.     getPrintData()
  25.   end if
  26.   stopSound2()
  27.   cursor(4)
  28.   go(1, "Island2")
  29. end
  30.  
  31. on notePadButton
  32.   DoNotepad()
  33. end
  34.  
  35. on continueNext
  36.   stopSound2()
  37.   go(the frame + 1)
  38. end
  39.